home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
One Click 21 (Special)
/
OC021.iso
/
Juegos
/
King of Skeleton
/
King of Skeleton.swf
/
scripts
/
DefineSprite_421
/
frame_1
/
DoAction.as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-02-02
|
331 b
|
18 lines
function setupSnow(t)
{
t.yVel = -5.5 + Math.random() * 16;
t.xVel = 25;
t._rotation = Math.random() * 180;
t.rotVel = Math.random() * 11 - 5;
}
function doSnow(t)
{
t._x -= t.xVel;
t.yVel *= 1.3;
t.yVel += 2;
t._y += t.yVel;
t._rotation += t.rotVel;
}
startShake = 169;
endShake = 189;